home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
WV GetRight Clear 01.xpl
< prev
next >
Wrap
Text File
|
2002-04-06
|
1KB
|
51 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="5"
"COUNT"="1"
"UIPATH"="Program Options\Other Programs\GetRight\"
"NAME"="Recent URLs"
"VERSION"="1.00"
"LANGUAGE"="VBScript"
"TEXT 1"="Clear entered URLs"
"DESCRIPTION 1"="If you don't want people to see which URLs you have recently entered, click on this button."
"DESCRIPTION 2"="GetRight is a program which is able to continue an interrupted file download on Internet ..."
"DESCRIPTION 3"="GetRight is available at http://www.getright.com/"
"AUTHOR"="FORMATMAN"
"CONTACTURL"="http://formatland.free.fr/"
"COPYRIGHT"="Copyright ⌐ Formatman"
"COMMENT 1"="For more informations, go to http://www.xsetup.net"
"COMMENT 2"="Created by VORMELKER Werner"
"COMMENT 3"="http://formatland.free.fr/"
"COMMENT 4"="formatman@wanadoo.fr"
sP="HKCU\Software\HeadLight\GetRight\MRU\"
Sub Plugin_Initialize
If RegPathExists(sP)=false then
Disable()
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
if ElementIndex=1 then
for l=0 to 10
s="URL" & l
v=RegReadValue(sP & s)
If IsEmpty(v)=false then
Call RegDeleteValue(sP & S)
end if
Next
Call MsgInformation("URL cleared !")
end if
End Sub
Sub Plugin_Terminate
End Sub